@extends('front.layout') @section('content') @if($page?->slug !== 'home') @endif @switch($page?->slug) @case('home')

Explore collection

New Arrival

@foreach($featured as $f) @php $variant = DB::table('product_variance_data')->where('product_id', $f->id)->first(); $product_img = DB::table('product_images')->where(['product_id'=>$f->id, 'variant_id' => $variant->id])->first(); @endphp
{{$f?->title}} {{$f?->title}} @if($f->sale_price < $f->reg_price)
Sale
@endif
{{$f->stitle}}
₹{{number_format($variant->reg_price, 2)}}₹{{number_format($variant->sale_price, 2)}}
@endforeach
@foreach($category as $c) @endforeach

Find The Perfect Fit

@foreach($category as $key => $c) @if($c?->title === 'Hookah' || $c?->title === 'Glass Bong Percolator' || $c?->title === 'Hookah Flavours' || $c?->title === 'Hookah Accessories')
@php $products = DB::table('product')->where(['product.is_show' => 1, 'category' => $c->id])->orderBy('id', 'desc')->limit('5')->get(); @endphp @foreach($products as $p) @php $variant = DB::table('product_variance_data')->where('product_id', $p->id)->first(); $product_img = DB::table('product_images')->where(['product_id'=>$p->id, 'variant_id' => $variant->id])->first(); $subcategory = DB::table('subcategory')->where('id', $p->subcategory)->first(); @endphp
{{$p?->title}} {{$p?->title}} @if($variant->sale_price < $variant->reg_price)
Sale
@endif
{{$subcategory?->title}}
₹{{number_format($variant->reg_price, 2)}}₹{{number_format($variant->sale_price, 2)}}
@endforeach
@endif @endforeach

Testimonials

@foreach($testimonials as $t)

{{$t->comment}}

{{$t?->title}}

{{$t->designation}}

@endforeach

Free Returns

Return money within 10 days

SHOP ONLINE 24/7

Contact us 24/7 hours a day

FREE SHIPPING

From all orders over $100

SECURE SHOPPING

You're in safe hands
@break @case('collection')
@foreach($category as $c) @endforeach
@break @case('about-us') {!! $page?->description !!}

What Our Clients Say About Us

@foreach($testimonials as $t)

{!! $t->comment !!}

{{$t?->title}}
{{$t?->title}}
@endforeach
@break @case('blogs') {!! $page?->description !!}
@foreach($blogs as $b)
{{$b?->title}}

{{$b?->title}}

@php $content = substr(strip_tags($b?->description), 0, 100) @endphp {{$content}}

Read more
@endforeach
@break @case('contact-us')

Office Address:

{{$contact->address}}

Line Shape

Get in touch

Text
@break @case('carts')

Total Cart Item: 0

Products Details Price Quantity Total

Use Coupon Code

Enter your coupon code if you have one.

x Remove Offer

Cart Totals

Subtotal 0
Coupon
-₹0
Total 0

Cart Is Empty!!!

Continue Shopping
@break @case('checkout')
@if(empty(Auth::guard('customer')->user()))

Returning customer? Login

@endif @if(count($address) > 0)

Billing details

@foreach($address as $key => $a) @php $addressData = json_decode($a->address_details); @endphp

@endforeach
user()) ? 'readOnly' : ''}}>
@else
user()) ? 'readOnly' : ''}}>
@endif

Billing details

Product
Subtotal
Subtotal
0.00
Coupon ()
0.00
Total
0.00

Payments Method

  • Make your payment directly into our bank account. Please use your Order ID as the payment reference.

  • Make your payment directly into our bank account. Please use your Order ID as the payment reference.

  • Make your payment directly into our bank account. Please use your Order ID as the payment reference.

@break @case('thankyou')
@if(isset($_GET['error']) === false)

Thank you for your order!

Payment is successfully processsed and your order is on the way

You will receive an order confirmation email with details of your order and a link to track its progress.

Order ID: {{$_GET['order_id']}}

Order Summary

@php $product = json_decode($orders->productCheckout); $checkout = json_decode($orders->couponCheckout); @endphp @foreach($product as $p) @endforeach
Image Product Qty Price Subtotal
{{$p->product_title}}
Variant: {{$p->product_variant}}
{{$p->quantity}} ₹{{$p->product_price}} ₹{{$p->quantity * $p->product_price}}
Subtotal ₹{{$checkout[0]->subTotal}}
Coupon Discount -₹{{$checkout[0]->couponValue ? $checkout[0]->couponValue : 0.00}}
Shipping ₹{{$checkout[0]->shippingValue ? $checkout[0]->shippingValue : 0.00}}
Total ₹{{$checkout[0]->finalAmount}}
@php $add = json_decode($address->address_details) @endphp

Shipping Address

{{$add->shipping_address}}, {{$add->shipping_pincode}},

{{$add->shipping_state}},

{{$add->shipping_country}}

{{$add->phone}}

Billing Address

{{$add->address}}, {{$add->pincode}},

{{$add->state}},

{{$add->country}}

{{$add->phone}}

Order details

Transaction ID: {{$orders->transaction_id}}

Order ID: {{$_GET['order_id']}}

Order Date: {{date('d F, Y', strtotime($orders->created_at))}}

Order Total: ₹{{$checkout[0]->finalAmount}}

@else @if($_GET['error'] ==='PENDING')

Payment Pending

Payment is in Pending State. Please Try Again

@else

Payment Failed

Payment has been failed due to {{$_GET['error']}}

@endif @endif
@break @case('signup')
@break @case('login')
@break @case('account') @php $savedAddress = App\Models\SavedAddressModel::where('user_id', Auth::guard('customer')->user()->id)->get(); @endphp
@if (Session::has('success'))
{{ Session::get('success') }}
@elseif(Session::has('error'))
{{ Session::get('error') }}
@endif
user

{{ucwords(Auth::guard('customer')->user()->name)}}

{{Auth::guard('customer')->user()->email}}

{{Auth::guard('customer')->user()->phone}}

Address Book

@foreach($savedAddress as $a) @php $add = json_decode($a->address_details) @endphp
{{$add->shipping_fname.' '.$add->shipping_lname}}
{!! $add->shipping_address.',
'.$add->shipping_pincode.',
'.$add->shipping_state.',
'.$add->shipping_country !!}

Mobile: {{$add->phone}}

Remove
@endforeach

My Orders

@foreach($orders as $o) @php $product = json_decode($o->productCheckout); $coupon = json_decode($o->couponCheckout); @endphp @elseif($o->order_status == 2) Shipped @elseif($o->order_status == 3) Delivered @elseif($o->order_status == 4) Cancelled

{{$o->cancelled_reason}}

@endif @endforeach
Image Order Id Price Status View
{{$product[0]->product_title}} #{{$o->order_id}} ₹{{$o->paid_amount}} @if($o->order_status == 1) Placed

Profile

@break @case('forgot-password')

Forgot Password

Please enter your email address below. You will receive a link to reset your password.

@break @case('create-password')

@break @default
{!! $page?->description !!}
@endswitch @endsection